home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Developer / StopWatch / Source / BrowserViewMgr.h < prev    next >
Encoding:
Text File  |  1994-02-06  |  574 b   |  29 lines

  1. /*
  2.  * For legal stuff see the file COPYRIGHT
  3.  */
  4. #import "ViewMgr.h"
  5. #import "ClientInfo.h"
  6.  
  7. @interface BrowserViewMgr : ViewMgr
  8. {
  9.   id    browser;
  10.   List    *selectedCells;
  11.   id    titleText;
  12. }
  13.  
  14. - selectedItem;
  15. - (void)displaySummary;
  16.  
  17. /*
  18.  * Must be implemented in the subclass
  19.  */
  20. - (SEL)addMethod;
  21. - (SEL)deleteMethod;
  22. - (SEL)sortMethod;
  23. - itemEditor;            /* return instance of editor class */
  24. - info:(ClientInfo *)info itemAt:(int)position; /* return the given item from the list */
  25. - (int)itemCount:(ClientInfo *)info; /* how many items in our list */
  26. - (void)displayTitle;
  27.  
  28. @end
  29.